|
|||||||||
| PREV PACKAGE NEXT PACKAGE | FRAMES NO FRAMES | ||||||||
See:
Description
| Interface Summary | |
| NodeTransformer | Transforms the input to a result node. |
| SAXTransformer | Transforms the input to a SAX handler. |
| StreamTransformer | Transforms the input to an output stream. |
| StringTransformer | Transforms the input to a string. |
| Stylesheet | Represents a compiled stylesheet. |
| StylesheetFactory | Factory for creating stylesheets. |
| Transformer | Transforms the input to an output. |
| Class Summary | |
| OutputFormat | Encapsulates the xsl:output attributes. |
Interfaces for XSLT transformations.
StylesheetFactory factory = new Xsl();
Stylesheet style = factory.newStylesheet("mystyle.xsl");
StreamTransformer transformer = style.newStreamTransformer();
WriteStream os = Vfs.openWrite("test.html");
transformer.transform("test.xml", os);
os.close();
|
|||||||||
| PREV PACKAGE NEXT PACKAGE | FRAMES NO FRAMES | ||||||||